home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POV302 / MANUAL / DOCSDEMO / PRISMDM1.POV < prev    next >
Encoding:
Text File  |  1997-01-20  |  385 b   |  22 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 20
  5.   location <2, 10, -30>
  6.   look_at <0, 1, 0>
  7. }
  8.  
  9. light_source { <20, 20, -20> color White }
  10.  
  11. prism { 
  12.   linear_sweep
  13.   linear_spline
  14.   0, // sweep the following shape from here ...
  15.   1, // ... up through here
  16.   7, // the number of points making up the shape ...
  17.  
  18.   <3,5>, <-3,5>, <-5,0>, <-3,-5>, <3, -5>, <5,0>, <3,5>
  19.  
  20.   pigment { Green }
  21. }
  22.